05. Transpose

Vector Transpose

It's very important to note that in this lesson we emphasize the column vector.

Vector x=[a1a2a3:an]\vec{x}=\begin{bmatrix} a_1\\ a_2\\ a_3\\ :\\a_n\end{bmatrix} is a column vector.

But vectors can also be represented at row vectors.

Vector y=[a1a2a3an]\vec{y}= \begin{bmatrix} a_1&a_2 &a_3& …& a_n \end{bmatrix} is a row vector.

If you look closely at both vectors, x\vec{x} and y\vec{y}, you will notice that they have the same elements, only one is a column and the other is a row.

It's as if one vector was actually tilted by 9090^{\circ}.

In the world of Linear Algebra we call this change a transpose. The mathematical symbol of a transpose is TT and it's used the following way:

[a1a2a3:an]T=[a1a2a3an]\begin{bmatrix} a_1\\ a_2\\ a_3\\ :\\a_n\end{bmatrix}^T= \begin{bmatrix} a_1&a_2 &a_3& …& a_n \end{bmatrix}

Or:

[a1a2a3an]T=[a1a2a3:an] \begin{bmatrix} a_1&a_2 &a_3& …& a_n \end{bmatrix}^T=\begin{bmatrix} a_1\\ a_2\\ a_3\\ :\\a_n\end{bmatrix}

Equation 1

In short:

xT=y\large\vec{x}^T=\vec{y}

or

yT=x\large\vec{y}^T=\vec{x}

Equation 2